home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hardcore Gamer Resource Kit
/
Hardcore Gamer Resource Kit - Disc 3.iso
/
screensavers
/
saver17.zip
/
VoodooLights
/
Sources
/
cell_util.h
< prev
next >
Wrap
C/C++ Source or Header
|
1997-07-24
|
800b
|
27 lines
#ifndef _CELL_UTIL_H_
#define _CELL_UTIL_H_
extern void cutl_random_pos( Float radius, Cell * c ) ;
extern void cutl_group_interaction(Cell *c, Cell **group, int n, Float scale, Float factor) ;
extern void cutl_closest_interaction(Cell *c, Cell **group, int n, Float scale, Float factor) ;
extern void cutl_fgroup_interaction(Cell *c, Cell **group, int n, Float scale) ;
extern void cutl_indiv_interaction(Cell *c, Cell *q, Float factor) ;
extern void cutl_limit_speed( Cell *c, Float maxV ) ;
extern void cutl_stretch_to_age( Cell *c, Float scale ) ;
extern void cutl_stretch_to_distance( Cell *c, Float distance, Float scale ) ;
extern void cutl_snap_pos_to_dad( Cell *c ) ;
extern void cutl_limit_bent( Cell *c, Float scale ) ;
extern Float Gravity ;
#endif